home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / timagefx / abtimgfx.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-15  |  671b  |  40 lines

  1. unit AbtImgFx;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls, TStretch;
  7.  
  8. type
  9.   TAboutBox = class(TForm)
  10.     OKButton: TBitBtn;
  11.     StretchPanel1: TStretchPanel;
  12.     Panel1: TPanel;
  13.     ProgramIcon: TImage;
  14.     ProductName: TLabel;
  15.     Version: TLabel;
  16.     Copyright: TLabel;
  17.     Panel2: TPanel;
  18.         Memo1: TMemo;
  19.     procedure OKButtonClick(Sender: TObject);
  20.     private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25.  
  26. var
  27.   AboutBox: TAboutBox;
  28.  
  29. implementation
  30.  
  31. {$R *.DFM}
  32.  
  33. procedure TAboutBox.OKButtonClick(Sender: TObject);
  34. begin
  35.     Close;
  36. end;
  37.  
  38. end.
  39.  
  40.